// build simple buffer, save then reload then display
# BUF pkt
1 2 3 4 5
# SAVE_BUF pkt "pkt.bin"
# LOAD_BUF "pkt.bin" pkt2
# MSGBOX pkt2

// build vertical RGB888 ramp in frame buffer
// save as binary file to test when sending RGB888 video-mode command
# BUF frame
# line = 0
# LOOP_START SYS_VACTIVE
   *(3*SYS_HACTIVE) line
   # line = (line + 1) & ffh
# LOOP_END
# SAVE_BUF frame "vramp640x480.bin"







	